| JspPage Interface | |
| public interface JspPage extends Servlet | |
|
The JspPage interface provides two methods that are used to initialize and destroy a JSP. |
|
| jspDestroy() | |
| public void jspDestroy() | Method |
|
jspDestroy() is called when the JspPage object is about to be destroyed. |
|
| jspInit() | |
| public void jspInit() | Method |
|
jspInit() is called when the JspPage object is created. It is used to initialize the JspPage. |
|